home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / xgui / sources / ui_confirmer.ph < prev    next >
Encoding:
Text File  |  1994-04-25  |  1.3 KB  |  55 lines

  1. /*****************************************************************************
  2.   FILE           : ui_confirmer.ph
  3.   SHORTNAME      : confirm.ph
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : Header file of correspondent '.c' file
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Tilman Sommer
  10.   DATE           : 6.7.1990
  11.  
  12.   CHANGED BY     : Guenter Mamier
  13.   IDENTIFICATION : @(#)ui_confirmer.ph    1.8 3/2/94
  14.   SCCS VERSION   : 1.8
  15.   LAST CHANGE    : 3/2/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.              
  19. ******************************************************************************/
  20.  
  21.  
  22. #ifndef _UI_CONFIRMER_DEFINED_
  23. #define _UI_CONFIRMER_DEFINED_
  24.  
  25.  
  26. /* begin global definition section */
  27.  
  28. void  ui_confirmOk (char *);
  29. int   ui_confirmYes (char *);
  30.  
  31. /* end global definition section */
  32.  
  33.  
  34. /* begin private definition section */
  35.  
  36.  
  37. static void  ui_confirm (char *, int);
  38. static void  ui_cf_yesNoOk (Widget, caddr_t, caddr_t);
  39.  
  40.  
  41. static int     ui_cf_answer;      /* which button was pressed to exit ? */
  42. static Widget  ui_cf_popup;       /* shell widget containing the confirmer */
  43. static Bool    ui_cf_exit = TRUE; /* to control the confirmer loop */
  44.  
  45.  
  46. /* end private definition section */
  47.  
  48.  
  49. #endif /* _UI_CONFIRMER_DEFINED_ */
  50.  
  51.  
  52.  
  53. /* end of file */
  54. /* lines: 32 */
  55.